This archive contains the full source code examples for Chapter 3.

The archive is structured as an Eclipse workspace, but can be used with any
IDE. The structure is outlined below, with a short explanation where
applicable. If you're using Eclipse, you can use "File" > "Import..." >
"Existing Projects into Workspace" to import this project. If you are
using another IDE, you probably should create a new project and import
the files into that project.

+ src
|  + inc 
|     + monsters
|        + mias   (contains the Java source code)
+ WebContent (will be the root of the WAR archive, contains the pages)
|  + images
|  + META-INF (contains the Manifest for the WAR file)
|  + templates (contains the Facelets templates)
|  + WEB-INF (configuration files and other files that are needed by the web application, but should not be visible from outside the application.)
|     + lib (libraries will be put here when generating the WAR)
|     + tags (Facelets tag definitions)
+ .metadata (Eclipse metadata. Ignore this when using another IDE.)
+ .settings (Eclipse project settings. Ignore this when using another IDE.)

